5.6.0 release - #446
Merged
Merged
Conversation
added 2 commits
July 21, 2026 12:10
- build-dist.yml 在出 tarball 后、attach release 前加冒烟 step:解压 linux tarball → 跑 install.sh --no-prompt --skip-bind --skip-browser(指本地 tarball,不碰 runner ~/.openclaw)→ bin/openclaw --version。冒烟失败则 workflow fail,不会把坏 tarball attach 到 release - install.sh / install.ps1 加 --skip-browser / -SkipBrowser:跳过 camoufox-cli 浏览器二进制安装(省 ~557MB Firefox 下载),冒烟只验解压+依赖装+引擎起
- release.yml 推 tag 后主动 gh workflow run build-dist.yml -f tag=<tag>:GITHUB_TOKEN 推 tag 不触发下游 on:push(递归保护),workflow_dispatch 是例外可触发;加 actions: write 权限,清过期注释 - build-dist.yml 加 workflow_dispatch inputs.tag;ASSET_TAG 优先 inputs.tag > git tag > version 文件,输出 asset_tag 供冒烟/attach 复用;attach 去 continue-on-error + 去 per-file || true(上传失败不再被吞,release 不会静默缺包) - ci.yml / release.yml / build-dist.yml:actions/checkout v4→v5、setup-node v4→v5、pnpm/action-setup v4→v6,全部 node24 runtime,消 Node 20 deprecation 警告
|
codes-factory-of-bg seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
升级 actions/setup-node@v5→v6:v5 的 package-manager-cache 检测到 package.json 里 packageManager: pnpm@ 就自动开 pnpm 缓存,但它在 pnpm/action-setup 之前跑、pnpm 还没装,抛 'Unable to locate executable file: pnpm'(setup-node#1351)。v6 把自动缓存限为 npm-only,解。 pnpm/action-setup@v6 显式传 version: 10.30.2,规避 v6 早期不读 packageManager 版本的坑(action-setup#227)。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.